home *** CD-ROM | disk | FTP | other *** search
-
- //------------------------------------------------------------------->
- //
- // test-2.pov
- //
- // "Easy POV Oven"
- //
- // Written By: Paul T. Dawson
- // ptdawson@voicenet.com
- // http://www.voicenet.com/~ptdawson
- //
- // All code and techniques are PUBLIC DOMAIN - have fun with it!
- //
- //------------------------------------------------------------------->
- //
- // This file is for testing the "Oven" object only.
- //
- //------------------------------------------------------------------->
- //
- // All of the usual initializing.
-
- #include "colors.inc"
- #include "textures.inc"
- #include "metals.inc"
- #include "skies.inc"
- #default { finish { Shiny } }
- background { Gray50 }
- #declare R1 = seed(0)
-
- #declare Camera_Loc = < 1.0*12, 2.7*12, -2.7*12 >
-
- camera { location Camera_Loc look_at < 0, 1*12, 0 > }
-
- light_source { Camera_Loc color rgb 1.5 }
- light_source { <-1*12, 3*12, -4*12> color rgb 1.5 }
-
- //------------------------------------------------------------------->
- //
- // Include the file and show the object.
-
- #include "oven.inc"
- object { Oven }
-
- //------------------------------------------------------------------->
- //
- // End of this file.
-
-